From: Richard M. Stallman Date: Mon, 9 Dec 2002 20:23:35 +0000 (+0000) Subject: (isearch-no-upper-case-p): \\ only quotes one character. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~29279 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=e6865cefaab8a5cd4a8f5b2f88414ea2a7936a78;p=emacs.git (isearch-no-upper-case-p): \\ only quotes one character. --- diff --git a/lisp/isearch.el b/lisp/isearch.el index f0f8e5b4fbe..b8103285aec 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el @@ -1871,7 +1871,8 @@ since they have special meaning in a regexp." (if (and regexp-flag (eq char ?\\)) (setq quote-flag (not quote-flag)) (if (and (not quote-flag) (not (eq char (downcase char)))) - (setq found t)))) + (setq found t)) + (setq quote-flag nil))) (setq i (1+ i))) (not found)))